home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1996 March
/
EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso
/
earcd
/
editor
/
blksedtr.lha
/
BED
/
Rexx
/
UnsetLocks.bed
< prev
Wrap
Text File
|
1996-01-28
|
330b
|
24 lines
/*
** $VER: UnsetLocks.bed 1.0 (03.01.96)
**
** Unset all display and input locks currently set in any BlacksEditor
** document.
*/
OPTIONS RESULTS
OPTIONS FAILAT 11
ADDRESS BED
GetDocuments
docs = RESULT
DO WHILE docs ~= ''
PARSE VAR docs '"' . '" ' port docs
ADDRESS VALUE port
SetDisplayLock OFF
SetInputLock OFF
END